home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / sys / RCS / timeb.h,v < prev    next >
Text File  |  1989-03-05  |  617b  |  45 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     89.03.05.14.32.12;  author douglis;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @baseline from monet
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @/*
  27.  * Copyright (c) 1982, 1986 Regents of the University of California.
  28.  * All rights reserved.  The Berkeley software License Agreement
  29.  * specifies the terms and conditions for redistribution.
  30.  *
  31.  *    @@(#)timeb.h    7.1 (Berkeley) 6/4/86
  32.  */
  33.  
  34. /*
  35.  * Structure returned by ftime system call
  36.  */
  37. struct timeb
  38. {
  39.     time_t    time;
  40.     unsigned short millitm;
  41.     short    timezone;
  42.     short    dstflag;
  43. };
  44. @
  45.